home *** CD-ROM | disk | FTP | other *** search
/ Windows Expert / Windows Expert.iso / utility / whelp.zip / MAKEFILE next >
Text File  |  1992-06-03  |  287b  |  20 lines

  1. #
  2. # makefile for whelp
  3. #
  4.  
  5. OBJECTS    = whelp.obj
  6.  
  7. whelp.exe : $(OBJECTS) whelp.def
  8.     link /ON:N $(OBJECTS), /A:16, NUL, /NOD llibcew libw commdlg $(LIBS), whelp.def
  9.     rc whelp.exe
  10.  
  11. .c.obj:
  12.     cl -c $(CFLAGS) -ALw -Gsw -Ow -W4 $*.c
  13.  
  14. #
  15. # ctags target
  16. #
  17.  
  18. ctags :
  19.     ctags *.c *.h
  20.